home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000262_fdc@columbia.edu_Mon Aug 5 10:20:17 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  67 lines

  1. Article: 13580 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.unix.solaris,comp.protocols.kermit.misc
  5. Subject: Re: Reliable File Transfer Utility
  6. Date: 5 Aug 2002 10:12:26 -0400
  7. Organization: Columbia University
  8. Lines: 50
  9. Message-ID: <aim14a$fn9$1@watsol.cc.columbia.edu>
  10. References: <3D4D86B4.4E2E2162@adelphia.net>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1028556748 27790 128.59.39.139 (5 Aug 2002 14:12:28 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 5 Aug 2002 14:12:28 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.unix.solaris:402713 comp.protocols.kermit.misc:13580
  16.  
  17. In article <3D4D86B4.4E2E2162@adelphia.net>,
  18. Doug Capellman  <dcapellman@adelphia.net> wrote:
  19. : I have a requirement for a reliable file transfer utility which must
  20. : ensure complete and accurate data transfer.  Is there a commercial
  21. : product available?  The product must be compatible with Solaris 2.6 and
  22. : 2.8, operate in a client-server model, and have low administrative
  23. : overhead.
  24. C-Kermit should do the trick:
  25.  
  26.   http://www.columbia.edu/kermit/ckermit.html
  27.  
  28. It has distinct advantages over most of the other alternatives:
  29.  
  30.  . It is transport independent, so if (for example) your TCP/IP
  31.    connection is down you can fall back to dialup (or even X.25).
  32.  
  33.  . It is innately programmable so you can test every operation for
  34.    success or failure and react appropriately.
  35.  
  36.  . It's portable to all other Unix platforms and to Windows, so in
  37.    case you change platforms your application still works.
  38.  
  39.  . The underlying protocol can be either Kermit (any transport) or
  40.    FTP (Internet only).  When you use Kermit over TCP/IP, you get
  41.    an extra level of error checking.
  42.  
  43.  . It supports recovery, update, and other time-saving features
  44.    on both FTP and Kermit connections.
  45.  
  46.  . It supports SSL/TLS, Kerberos, and other strong security
  47.    methods on Internet connections (both FTP and Kermit).
  48.  
  49. These features make it ideally suited for applications such as transaction
  50. processing and EDI, in which each file must be transferred reliably and
  51. securely, once and only once, rain or shine.  See the following page for a
  52. detailed discussion:
  53.  
  54.   http://www.columbia.edu/kermit/case10.html
  55.  
  56. The Kermit protocol equivalent of an FTP server is Internet Kermit Service:
  57.  
  58.   http://www.columbia.edu/kermit/iksd.html
  59.  
  60. Also see:
  61.  
  62.   http://www.columbia.edu/kermit/ckscripts.html  - The Kermit script library
  63.   http://www.columbia.edu/kermit/ftpscripts.html - FTP scripting tutorial
  64.  
  65. - Frank
  66.